home *** CD-ROM | disk | FTP | other *** search
/ PCBoard 15.1 Demo / PCBoard v15.1 DEMO - Clark Dev. Co (1994) - Disk 1 of 1.imd / PCBDISK.EXE / PPL / KAL.PPE (.txt) next >
Encoding:
PCBoard Programming Language Executable  |  1994-02-14  |  1.3 KB  |  110 lines

  1. ;------------------------------------------------------------------------------
  2. ;                                                   .ss.
  3. ;                                                   `²²'
  4. ;             .,sS$Ss,,s$  .,sS$$$Ss.  .,sS$Ss,,s$ .ss.  .sSs.
  5. ;           .d$$²^°²$$$$'.d$P²°^^²$P'.d$$²^°²$$$$'.$$$' .$$$²Sb,.
  6. ;           $$$'   .$$$' $$$²Sçsµ²' .$$$'   .$$$'.$$$' .$$$'  `$$b.
  7. ;           $$$b,,d$$$' ,$$$b,....,s$$$$b,,d$$$'.$$$;.,$$$'    ;$$$
  8. ;           `²S$$S²²S$$S²°²S$$$$S²°°²S$$$$$$',$$S²°²S$S'.sS$$$P²'
  9. ;                                    .sS²°$$$²²°"'       d²°'
  10. ;                                  .$$²  .$$'
  11. ;                                  $$$.,d$$'
  12. ;                                  `²S$$S²'
  13. ;------------------------------------------------------------------------------
  14. ; P.P.L.X. 2.OO                          (C)1996 - Lone Runner / AEGiS CoRP'96 
  15. ;------------------------------------------------------------------------------
  16. ; PPE 1.OO (plain) - Analysis ON - Postprocessing ON
  17. ;------------------------------------------------------------------------------
  18.  
  19.     Boolean  BOOLEAN001
  20.     Integer  INTEGER001
  21.     Integer  INTEGER002
  22.     String   STRING001
  23.     String   STRING002
  24.  
  25. ;------------------------------------------------------------------------------
  26.  
  27.     If (!AnsiOn()) End
  28.     BOOLEAN001 = 0
  29.     STRING001 = Chr(32) + Chr(248) + Chr(219) + Chr(254) + Chr(249)
  30.     Gosub LABEL003
  31.     KbdChkOff
  32.     :LABEL001
  33.     If (BOOLEAN001) Goto LABEL002
  34.     If (Random(250) == 0) Gosub LABEL003
  35.     INTEGER001 = 1 + Random(77) + 1
  36.     INTEGER002 = Random(21) + 1
  37.     STRING002 = Mid(STRING001, Random(4) + 1, 1)
  38.     Color Random(15)
  39.     AnsiPos INTEGER001, INTEGER002
  40.     Print STRING002
  41.     AnsiPos 80 - INTEGER001 + 1, INTEGER002
  42.     Print STRING002
  43.     AnsiPos INTEGER001, 22 - INTEGER002 + 1
  44.     Print STRING002
  45.     AnsiPos 80 - INTEGER001 + 1, 22 - INTEGER002 + 1
  46.     Print STRING002
  47.     BOOLEAN001 = (Inkey() == " ")
  48.     Goto LABEL001
  49.     :LABEL002
  50.     KbdChkOn
  51.     DefColor
  52.     Cls
  53.     End
  54.     :LABEL003
  55.     DefColor
  56.     Cls
  57.     AnsiPos 28, 23
  58.     Print "Hit the SPACE BAR to exit"
  59.     Return
  60.  
  61. ;------------------------------------------------------------------------------
  62. ;
  63. ; Usage report (before postprocessing)
  64. ;
  65. ; ■ Statements used :
  66. ;
  67. ;    2       End
  68. ;    2       Cls
  69. ;    1       Color 
  70. ;    2       Goto 
  71. ;    6       Let 
  72. ;    5       Print 
  73. ;    3       If 
  74. ;    2       DefColor
  75. ;    2       Gosub 
  76. ;    1       Return
  77. ;    1       KbdChkOn
  78. ;    1       KbdChkOff
  79. ;    5       AnsiPos 
  80. ;
  81. ;
  82. ; ■ Functions used :
  83. ;
  84. ;    12      +
  85. ;    4       -
  86. ;    2       ==
  87. ;    2       !
  88. ;    1       Mid()
  89. ;    5       Chr()
  90. ;    5       Random()
  91. ;    1       Inkey()
  92. ;    1       AnsiOn()
  93. ;
  94. ;------------------------------------------------------------------------------
  95. ;
  96. ; Analysis flags : No flag
  97. ;
  98. ;------------------------------------------------------------------------------
  99. ;
  100. ; Postprocessing report
  101. ;
  102. ;    0       For/Next
  103. ;    0       While/EndWhile
  104. ;    0       If/Then or If/Then/Else
  105. ;    0       Select Case
  106. ;
  107. ;------------------------------------------------------------------------------
  108. ;                 AEGiS Corp - Break the routines, code against the machines!
  109. ;------------------------------------------------------------------------------
  110.